ChatReceivedEvent

class ChatReceivedEvent(val message: IChatComponent) : CancellableEvent(source)

This cancellable event is called when your client receives a chat message from the server.

Constructors

Link copied to clipboard
constructor(message: IChatComponent)

Properties

Link copied to clipboard
@get:JvmName(name = "isCancelled")
var cancelled: Boolean

This field defines whether the event is cancelled or not. Any mod can cancel and un-cancel an event. What an event does when cancelled is event-specific, and noted in that event's documentation.

Link copied to clipboard
val message: IChatComponent

The message being received, in the form of a Chat Component.